home *** CD-ROM | disk | FTP | other *** search
- //***************************************************************************
- //
- // this file is (c) '94-'96 Niklas Beisert
- //
- // this file is part of the cubic player development kit.
- // you may only use/modify/spread this file under the terms stated
- // in the cubic player development kit accompanying documentation.
- //
- //***************************************************************************
-
- struct mixqpostprocregstruct
- {
- void (*Process)(long *buffer, int len, int rate, int stereo);
- void (*Init)(int rate, int stereo);
- void (*Close)();
- mixqpostprocregstruct *next;
- };
-
- void mixqRegisterPostProc(mixqpostprocregstruct *);
-
- struct mixqpostprocaddregstruct
- {
- int (*ProcessKey)(unsigned short key);
- mixqpostprocaddregstruct *next;
- };
-
-